VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Spelling Namespace / SpellCheckTask Class / SpellCheckTask Constructors / SpellCheckTask Constructor(Boolean,Boolean,String[])
Syntax Requirements SeeAlso
In This Topic
    SpellCheckTask Constructor(Boolean,Boolean,String[])
    In This Topic
    Initializes a new instance of the SpellCheckTask class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal needSpell
    A value indicating whether the task must spell check the specified words.
    As Boolean, _
    ByVal needSuggest
    A value indicating whether the task must create a list of suggestions for the specified (misspelled) words.
    As Boolean, _
    ByVal ParamArray words
    The words to spell check.
    () As System.String _
    )
    public SpellCheckTask(
    bool needSpell,
    bool needSuggest,
    params System.String[] words
    )
    public: SpellCheckTask(
    bool needSpell,
    bool needSuggest,
    params System.String[]* words
    )
    public:
    SpellCheckTask(
    bool needSpell,
    bool needSuggest,
    ... array<System.String>^ words
    )

    Parameters

    needSpell
    A value indicating whether the task must spell check the specified words.
    needSuggest
    A value indicating whether the task must create a list of suggestions for the specified (misspelled) words.
    words
    The words to spell check.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also